home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / lspsql.zip / DBVIEW.DOC < prev    next >
Text File  |  1992-08-25  |  2KB  |  58 lines

  1.  ****************************************************************************
  2.  
  3.       dbview.doc
  4.       Copyright (C) 1991-1992 by Autodesk, Inc.
  5.          
  6.       Permission to use, copy, modify, and distribute this software 
  7.       for any purpose and without fee is hereby granted, provided 
  8.       that the above copyright notice appears in all copies and that 
  9.       both that copyright notice and this permission notice appear in 
  10.       all supporting documentation.
  11.  
  12.       THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED
  13.       WARRANTY.  ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR
  14.       PURPOSE AND OF MERCHANTABILITY ARE HEREBY DISCLAIMED.
  15.  *****************************************************************************
  16.  
  17. DBVIEW.LSP is the utility program, which is used for look through and edit
  18. the database tables.
  19.  
  20. To use DBVIEW, do the following:
  21.     1. Load LISPSQL.EXP (or LISPSQL under UNIX) with the xload command
  22.        (i.e. (xload "lispsql"))
  23.        If it succeeds, "LISPSQL" will be echoed to the screen.
  24.  
  25.     2. Load DBVIEW.LSP with the load command, (i.e. load "dbview").
  26.  
  27. To use the DBVIEW, specify DBVIEW from the command line.
  28.  
  29.     One can cpecify the driver name as an answer to an inquiry by the program.
  30.  
  31.     Enter SQL driver name:
  32.  
  33.     If driver loads, the message "Driver loaded" will be echoed to the screen.
  34.  
  35.  
  36.     One can specify the database name, user name and password as responses
  37.     to questions by the program.
  38.  
  39.     Database name ->
  40.     User name ->
  41.     Password ->
  42.  
  43.     If the connection succeeds, the message "OK" will be echoed to the
  44.     screen.
  45.  
  46.     Then following fetch commands are available.
  47.  
  48.     First       - Fetch the First Row.
  49.     Last        - Fetch the Last Row.
  50.     Next        - Fetch in a Forward Direction.
  51.     Previous    - Fetch in a Backward Direction.
  52.     Delete      - Delete Current Row.
  53.     Update      - Update Current row.
  54.     Show        - Print all Row Set.
  55.     Exit        - Exit from DBVIEW.
  56.  
  57.  
  58.